home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
language
/
glisp.zoo
/
TT0.GL
< prev
next >
Wrap
Text File
|
1990-08-04
|
413b
|
17 lines
"catch/throw/unwind-protect test. Should print :
debut c1 c2 le-throw fin-unwind-protect fin-progn"
(progn
(print "debut")
(catch :c1
(print "c1")
(unwind-protect
(catch :c2
(print "c2")
(throw :c1
(print "le-throw")
999)
(print "fin-c2"))
(print "fin-unwind-protect"))
(print "fin-c1"))
(print "fin-progn"))